home *** CD-ROM | disk | FTP | other *** search
/ Collection of Internet / Collection of Internet.iso / msdos / wattcp / unzipped / bootp / iscntrl.c < prev    next >
Encoding:
Text File  |  1984-09-28  |  136 b   |  10 lines

  1. /*    return true if input character is a a control character
  2. */
  3.  
  4. iscntrl(c)
  5. unsigned char c;
  6. {
  7.  
  8.   return (0177==c || c<=037);
  9. }
  10.